'''''''''''''''''''''''''''' ' Functions declared in INI.VBX for use within VB 3.0 '''''''''''''''''''''''''''' Declare Function FillSection Lib "ini.vbx" (ByVal FileName As String, SectionArray() As String) As Integer Declare Function FillEntry Lib "ini.vbx" (ByVal FileName As String, ByVal SectionHeader As String, EntryArray() As String) As Integer '''''''''''''''''''''''''''' ' Visual Basic constant file for INI. Load this file ' into a code module. '''''''''''''''''''''''''''' 'Action values Global Const INI_ACTION_NONE = 0 Global Const INI_ACTION_READ = 1 Global Const INI_ACTION_WRITE = 2 Global Const INI_ACTION_DELSECTION = 3 Global Const INI_ACTION_DELENTRY = 4